home *** CD-ROM | disk | FTP | other *** search
- global glSystemSubList, gCurrentList, gSystemSelectedLine, gSystemSublistScroll, gListObject
-
- on mouseUp me
- if the mouseLine < 1 then
- exit
- end if
- value(gListObject).pSubListLineNum = the mouseLine
- gSystemSelectedLine = the mouseLine
- gSystemSublistScroll = member("system sublist").scrollTop
- hilite member("System sublist").line[the mouseLine]
- value(gListObject).plFoundImages = getAt(glSystemSubList, member("System sublist").text.line[the mouseLine])
- sprite(80).loc = point(-200, 0)
- value(gListObject).pImageScroll = 1
- value(gListObject).pCurrentImage = EMPTY
- value(gListObject).pSelectedImageSpriteNum = 0
- value(gListObject).pImageListPosition = 0
- member("found count").text = "Images found:" && value(gListObject).plFoundImages.count
- DisplayThumbNails()
- UpdateImageScroller()
- end
-
- on SelectLine me
- if gSystemSelectedLine < 1 then
- exit
- end if
- hilite member("System sublist").line[gSystemSelectedLine]
- member("System sublist").scrollTop = gSystemSublistScroll
- member("found count").text = "Images found:" && value(gListObject).plFoundImages.count
- end
-